home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ Win2K CMD AutoComplete 2.xpl < prev    next >
Text File  |  2001-04-28  |  2KB  |  66 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="7"
  3. "COUNT"="4"
  4. "UIPATH"="Appearance\System\DOS/Command Prompt"
  5. "NAME"="CMD Directory AutoComplete Key"
  6. "VERSION"="3.00"
  7. "LANGUAGE"="VBScript"
  8. "OSVERSION"="000101"
  9. "TEXT 1"="Do not use AutoComplete Key"
  10. "TEXT 2"="Use TAB as AutoComplete Key"
  11. "TEXT 3"="Use CTRL+D as AutoComplete Key"
  12. "TEXT 4"="Use CTRL+F as AutoComplete Key"
  13. "DESCRIPTION 1"="Windows NT, 2000 and XP provide a feature at the command prompt (cmd.exe) known as AutoComplete."
  14. "DESCRIPTION 2"="If this feature is activated, you can type a char, then the special key selected here and Windows will try to automatically complete the command for you with the files in the current directory." 
  15. "DESCRIPTION 3"="For example, if you are in the folder "C:\WINNT" and type "dir WIN", then press the AutoComplete key, Windows will try to AutoComplete the command with the files that are inside the C:\WINNT folder. E.g. it will write "dir WIN.INI" on the first try and if you hit the key again, continue with "dir WIN.EXE" and so on."
  16. "DESCRIPTION 4"="This can be used with directories as well; it isn't limited to files."
  17. "DESCRIPTION 5"="It's similar to the AutoComplete function of Internet Explorer."
  18. "DESCRIPTION 6"="IMPORTANT: Windows NT does only support one AutoComplete Key for both File AutoComplete AND Directory AutoComplete. Windows 2000 and XP on the other hand can be configured to use different keys for either File or Directory AutoComplete."
  19. "AUTHOR"="Xteq Systems"
  20. "CONTACTURL"="http://www.xteq.com"
  21. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  22. "COMMENT 1"=" "
  23.  
  24. '9 = TAB, 4 = CTRL+D, 6 = CTRL+F
  25.  
  26. 'needed ? 
  27. 'sp2="HKCU\Software\Microsoft\Command Processor\EnableExtensions"
  28.  
  29.  
  30.  sp="HKCU\Software\Microsoft\Command Processor\PathCompletionChar"
  31.  
  32. Sub Plugin_Initialize 
  33.  s=RegReadValue(sp)
  34.  if s=0 then SetUIElement 1,true
  35.  if s=9 then SetUIElement 2,true
  36.  if s=4 then SetUIElement 3,true
  37.  if s=6 then SetUIElement 4,true
  38. End Sub
  39.  
  40.  
  41. Sub Plugin_CheckData(ElementIndex)
  42. End Sub
  43.  
  44.  
  45.  
  46. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  47.  if GetUIElement(1)=true then
  48.     s=0
  49.  elseif GetUIElement(2)=true then
  50.     s=9
  51.  elseif GetUIElement(3)=true then
  52.     s=4
  53.  elseif GetUIElement(4)=true then
  54.     s=6
  55.  end if
  56.  
  57.  Call RegWriteValue(sp,s,2)
  58. End Sub
  59.  
  60.  
  61. Sub Plugin_Terminate 
  62. End Sub
  63.  
  64.  
  65.  
  66.